home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / emacs_src_18_58.lha / emacs-18.58 / src / termhooks.h < prev    next >
C/C++ Source or Header  |  1992-04-26  |  2KB  |  54 lines

  1. /* Hooks by which low level terminal operations
  2.    can be made to call other routines.
  3.    Copyright (C) 1985, 1986 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU Emacs.
  6.  
  7. GNU Emacs is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU Emacs is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU Emacs; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. extern int (*move_cursor_hook) ();
  23. extern int (*raw_move_cursor_hook) ();
  24.  
  25. extern int (*clear_to_end_hook) ();
  26. extern int (*clear_screen_hook) ();
  27. extern int (*clear_end_of_line_hook) ();
  28.  
  29. extern int (*ins_del_lines_hook) ();
  30.  
  31. extern int (*change_line_highlight_hook) ();
  32. extern int (*reassert_line_highlight_hook) ();
  33.  
  34. extern int (*insert_chars_hook) ();
  35. extern int (*output_chars_hook) ();
  36. extern int (*delete_chars_hook) ();
  37.  
  38. extern int (*ring_bell_hook) ();
  39.  
  40. extern int (*reset_terminal_modes_hook) ();
  41. extern int (*set_terminal_modes_hook) ();
  42. extern int (*update_begin_hook) ();
  43. extern int (*update_end_hook) ();
  44. extern int (*set_terminal_window_hook) ();
  45.  
  46. extern int (*read_socket_hook) ();
  47. extern int (*fix_screen_hook) ();
  48. extern int (*calculate_costs_hook) ();
  49.  
  50. /* If nonzero, send all terminal output characters to this stream also.  */
  51.  
  52. extern FILE *termscript;
  53.  
  54.